#
# comments start with a # sign
#
# each item in the make file consists of
# three things:  a product, its ingredients and how to make it
#
# gcc -o test test.c -lcurses
# CC = gcc -g -Wall


CC = g++ -g -Wall
        
rtest: rtest.o cstring.o
	$(CC) rtest.o cstring.o -o rtest
        
cstring.o: cstring.cpp cstring.hpp
	$(CC) -c cstring.cpp
	
rtest.o: rtest.cc
	$(CC) -c rtest.cc